* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  color: #122f44;
}

body {
  background-color: #faf5f0;
  font-family: "Montserrat", sans-serif;
}

header {
  position: relative;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 5%;
}

.logo {
  width: 120px;
  cursor: pointer;
}

.nav_links {
  list-style: none;
}

.nav_links li {
  display: inline-block;
  padding: 0px 20px;
}

.nav_links li a {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  color: #122f44;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease 0s;
}

.nav_links li a:hover {
  font-weight: bold;
}

.nav_links li a::after {
  content: "";
  height: 2px;
  width: 0;
  background: #122f44;
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  opacity: 1;
  pointer-events: none;
  transition: all 0.3s ease 0s;
}

.nav_links li a:hover::after {
  width: 100%;
}

button {
  font-family: "Montserrat", sans-serif;
  position: relative;
  padding: 9px 25px;
  background-color: transparent;
  color: #122f44;
  border-color: #122f44;
  border-style: solid;
  border-width: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  font-weight: bold;
}

button:hover {
  border-radius: 1px;
}

.path {
  padding: 0 5%;
  padding-top: 50px;
  padding-bottom: 30px;
}

.path a {
  font-weight: lighter;
  color: #122f4486;
  text-decoration: none;
}

.path a:hover {
  text-decoration: underline;
  color: #c2905a;
  font-weight: bold;
}

.title-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1440 / 500;
  background-image: url(https://images.unsplash.com/photo-1564425229667-e75cedafa07b?q=80&w=1474&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-size: cover;
  background-position: 50%;
  z-index: 1;
}

.title-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.384);
  z-index: 0;
}

.title-section .title {
  position: relative;
  display: block;
  color: #faf5f0;
  font-family: 'Lusitana', serif;
  font-size: 80px;
  align-items: center;
  justify-content: center;
  letter-spacing: -3px;
}

.text-section {
  padding: 0 25%;
  padding-top: 120px;
  padding-bottom: 100px;
}

.text-section .subtitle {
  display: block;
  font-family: 'Lusitana', serif;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: -1.5px;
  margin-bottom: 30px;
}

.text-section .subtitle-content {
  display: block;
  font-size: 16px;
  text-align: justify;
  padding-bottom: 30px;
  line-height: 25px;
}

.text-section label {
  font-weight: bold;
  cursor: pointer;
}

.text-section .main-content {
  max-height: 100px;
  display: block;
  font-size: 16px;
  text-align: justify;
  padding-top: 30px;
  line-height: 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s;
}

#text-section label + input[type="checkbox"] {
  display: none;
}

#text-section input[type="checkbox"]:checked + .main-content {
  max-height: 800px;
}

.map-section{
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: center;
  padding-bottom: 100px;
}

.map-section span {
  font-family: 'Lusitana', serif;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: -1.5px;
  margin-bottom: 30px;
}


.map-section iframe{
  border-radius: 20px;
  width: 700px;
  overflow: hidden;
}

.feed {
  padding: 0px 5%;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color:#eee3d9;
}

.feed .title-container {
  padding: 0px 10%;
  font-family: 'Lusitana', serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.feed .title {
  font-family: 'Lusitana', serif;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: -1.5px;
}

.feed .subtitle {
  font-weight: bold;
  font-size: 18px;
  text-align: right;
}

.row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 30px 4px;
}

.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  cursor: pointer;
}

.column-img {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.column-img::before {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background-image: url('https://unpkg.com/css.gg/icons/svg/instagram.svg');
  background-size: cover;
  z-index: 2;
  filter: invert(1);  
}

.column-img img {
  margin-top: 10px;
  vertical-align: middle;
  width: 100%;
}

.caption {
  color: white;
  font-size: 14px;
  position: absolute;
  bottom: 30px;
  left: 16px;
  opacity: 0;
  transition: 0.5s ease;
  z-index: 2;
}

.text {
  color: white;
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  bottom: 8px;
  left: 16px;
  opacity: 0;
  transition: 0.5s ease;
  z-index: 2;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-top: 30%;
  width: 100%;
  height: 0; /* Adjust the height as needed */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.822), rgba(0, 0, 0, 0)); /* Gradient overlay */
  z-index: 1; /* Above the image but below the text */
}

.column-img:hover .overlay {
  height: 100%;
}

.column-img:hover .text {
  opacity: 1;
}

.column-img:hover .caption {
  opacity: 1;
}

.sign-up {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1440 / 460;
  background-image: url(https://images.pexels.com/photos/12487047/pexels-photo-12487047.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1);
  background-size: cover;
  background-position: 50%;
  z-index: 1;
}

.sign-up::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.384);
  z-index: 0;
}

.title-container {
  position: relative;
  padding-bottom: 40px;
  z-index: 2;
}

.sign-up .title {
  display: block;
  color: #faf5f0;
  font-family: 'Lusitana', serif;
  font-size: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.sign-up .subtitle {
  display: flex;
  color: #faf5f0;
  align-items: center;
  justify-content: center;
}

.sign-up button {
  position: relative;
  padding: 10px 25px;
  background-color: transparent;
  color: #122f44;
  background-color: #faf5fa;
  font-weight: bolder;
  font-size: 14px;
  border-style: solid;
  border-width: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.sign-up button:hover {
  color: #faf5fa;
  background-color: #122f44;
  border-color: #faf5fa;
}

.footer-distributed {
  position: relative;
  background-color: #122f44;
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: bold 14px sans-serif;
  padding: 50px 50px 60px 50px;
}

.footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
  display: inline-block;
  vertical-align: top;
}

.footer-distributed .footer-left {
  width: 30%;
}

.footer-left img {
  width: 60px;
  margin-bottom: 70px;
}

.footer-left strong {
  color: #8f9296;
}

.footer-distributed h3 span {
  color: #e0ac1c;
}

.footer-distributed .footer-company-name {
  color: #8f9296;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}

.footer-distributed .footer-center {
  width: 35%;
}

.footer-distributed .footer-center i {
  background-color: #fbf5f1;
  color: #122f44;
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope {
  font-size: 17px;
  line-height: 38px;
}

.footer-distributed .footer-center p {
  display: inline-block;
  color: #fbf5f1;
  vertical-align: middle;
  margin: 0;
  font-weight: normal;
}

.footer-distributed .footer-center p span {
  color: #fbf5f1;
  display: block;
  font-weight: bold;
  font-size: 14px;
  line-height: 2;
}

.footer-distributed .footer-center p a {
  color: #fbf5f1;
  text-decoration: none;
}

.footer-right strong {
  color: #8f9296;
}

.footer-distributed .footer-right {
  width: 30%;
}

.footer-distributed .footer-company-about {
  line-height: 20px;
  color: #92999f;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}

.footer-distributed .footer-company-about span {
  display: block;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-distributed .footer-icons {
  margin-top: 25px;
}

.footer-distributed .footer-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color: #33383b;
  border-radius: 80px;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  margin-right: 3px;
  margin-bottom: 5px;
}

.footer-distributed .footer-icons a:hover {
  background-color: #276897;  
}

@media (max-width: 880px) {
  .footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
    display: block;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }
}
